home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / autosh1a / form2.frm < prev    next >
Text File  |  1999-10-05  |  1KB  |  50 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "About - Read me"
  4.    ClientHeight    =   2715
  5.    ClientLeft      =   4710
  6.    ClientTop       =   3090
  7.    ClientWidth     =   3270
  8.    ControlBox      =   0   'False
  9.    LinkTopic       =   "Form2"
  10.    ScaleHeight     =   2715
  11.    ScaleWidth      =   3270
  12.    Begin VB.CommandButton Command2 
  13.       Caption         =   "Back To The Program"
  14.       Height          =   255
  15.       Left            =   0
  16.       TabIndex        =   2
  17.       Top             =   2400
  18.       Width           =   3255
  19.    End
  20.    Begin VB.CommandButton Command1 
  21.       Caption         =   "                      Enter My Site!                    http://crazzywak.cjb.net"
  22.       Height          =   495
  23.       Left            =   0
  24.       TabIndex        =   1
  25.       Top             =   1800
  26.       Width           =   3255
  27.    End
  28.    Begin VB.Label Label1 
  29.       BorderStyle     =   1  'Fixed Single
  30.       Caption         =   $"Form2.frx":0000
  31.       Height          =   1695
  32.       Left            =   0
  33.       TabIndex        =   0
  34.       Top             =   0
  35.       Width           =   3255
  36.    End
  37. End
  38. Attribute VB_Name = "Form2"
  39. Attribute VB_GlobalNameSpace = False
  40. Attribute VB_Creatable = False
  41. Attribute VB_PredeclaredId = True
  42. Attribute VB_Exposed = False
  43. Private Sub Command1_Click()
  44. Shell ("explorer http://crazzywak.cjb.net")
  45. End Sub
  46.  
  47. Private Sub Command2_Click()
  48. Unload Me
  49. End Sub
  50.